home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / localDirParser.js < prev    next >
Encoding:
Text File  |  2004-04-30  |  2.7 KB  |  108 lines

  1. const classes             = Components.classes;
  2. const interfaces          = Components.interfaces;
  3. const nsILocalFile        = interfaces.nsILocalFile;
  4.  
  5. function GetLocalFileFromURLSpec(url)
  6. {
  7.   return GetFileFromURLSpec(url).QueryInterface(nsILocalFile);
  8. }
  9.  
  10. function GetFileFromURLSpec(url)
  11. {
  12.   var fileHandler = GetFileProtocolHandler();
  13.   return fileHandler.getFileFromURLSpec(url);
  14. }
  15.  
  16. function SelectLocalHDSite(url, tree)
  17. {
  18.   var localFile = GetLocalFileFromURLSpec(url);
  19.  
  20.   var dirEntries = localFile.directoryEntries;
  21.   while (dirEntries.hasMoreElements())
  22.   {
  23.     var fileEntry = dirEntries.getNext().QueryInterface(Components.interfaces.nsIFile);
  24.     AddLocalDirSubdirs(url, fileEntry, tree);
  25.   }
  26.  
  27.   EnableAllUI(true);
  28.   window.document.documentElement.removeAttribute("style");
  29.  
  30. }
  31.  
  32.  
  33. function AddLocalDirSubdirs(url, dirEntry, treeitem)
  34. {
  35.   var tch = treeitem.lastChild;
  36.  
  37.   var ti             = document.createElementNS(XUL_NS, "treeitem");
  38.   var tr             = document.createElementNS(XUL_NS, "treerow");
  39.   var tcLocation     = document.createElementNS(XUL_NS, "treecell");
  40.   var tcSize         = document.createElementNS(XUL_NS, "treecell");
  41.   var tcLastModified = document.createElementNS(XUL_NS, "treecell");
  42.  
  43.   var createdUpperDirEntry = false;
  44.  
  45.   var path, name, size, lastModifiedDate, isDir;
  46.   if (dirEntry)
  47.   {
  48.     name = dirEntry.leafName;
  49.     path = url + "/" + name;
  50.     size = dirEntry.fileSize;
  51.     lastModifiedDate = new Date(dirEntry.lastModifiedTime);
  52.     isDir = dirEntry.isDirectory();
  53.   }
  54.   else
  55.   {
  56.     var URL = GetURLFromUrl(url);
  57.     path = URL.filePath;
  58.     if (path == "" || path == "/")
  59.       return;
  60.  
  61.     // get rid of trailing slashes
  62.     while (path.length && path[path.length - 1] == '/')
  63.       path = path.substr(0, path.length - 1);
  64.  
  65.     // rely on nsIURL magic
  66.     var dir = URL.directory;
  67.  
  68.     while (dir.length && dir[dir.length - 1] == '/')
  69.       dir = dir.substr(0, dir.length - 1);
  70.  
  71.     URL.filePath = dir;
  72.  
  73.     size             = "";
  74.     lastModifiedDate = "";
  75.     path             = URL.spec;
  76.     name             = "..";
  77.     createdUpperDirEntry  = true;
  78.     isDir = true;
  79.   }
  80.  
  81.   ti.setAttribute("value", path);
  82.   tcLocation.setAttribute("label", name);
  83.   tcSize.setAttribute("label", size);
  84.   tcLastModified.setAttribute("label", lastModifiedDate);
  85.  
  86.   tr.appendChild(tcLocation);
  87.   tr.appendChild(tcSize);
  88.   tr.appendChild(tcLastModified);
  89.   ti.appendChild(tr);
  90.  
  91.   if (isDir)
  92.   {
  93.     ti.setAttribute("container", "true");
  94.     var subtch = document.createElementNS(XUL_NS, "treechildren");
  95.     ti.appendChild(subtch);
  96.     tch.insertBefore(ti, gFirstFileEntry);
  97.     gFirstFileEntry = ti.nextSibling;
  98.     return ti;
  99.   }
  100.  
  101.   tch.appendChild(ti);
  102.   if (!gFirstFileEntry)
  103.     gFirstFileEntry = ti;
  104.  
  105.   FilterEntry(gCurrentFilter, ti);
  106.   return ti;
  107. }
  108.